home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / source / snip9503 / do.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-03-14  |  341 b   |  18 lines

  1. /*
  2. **  DO.C - a simple facility for specifying multiple commands
  3. */
  4.  
  5. #include <stdio.h>
  6. #include <stdlib.h>
  7.  
  8. void main(int argc, char *argv[])
  9. {
  10.       if (2 > argc)
  11.       {
  12.             puts("Usage: DO \"DOS command 1\" \"DOS command 2\" ...");
  13.             return;
  14.       }
  15.       while (--argc)
  16.             system(*++argv);
  17. }
  18.